home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000394_news@columbia.edu_Sun Dec 11 15:18:29 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20924
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 12 Dec 1994 00:08:19 -0500
  3. Received: by apakabar.cc.columbia.edu id AA20129
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 12 Dec 1994 00:08:16 -0500
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: How to Optimize MS-Kermit for Speed
  9. Message-Id: <1994Dec11.211829.35179@cc.usu.edu>
  10. Date: 11 Dec 94 21:18:29 MDT
  11. References: <3cetso$2t8@mark.ucdavis.edu>
  12. Organization: Utah State University
  13. Lines: 31
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3cetso$2t8@mark.ucdavis.edu>, hchau@landau.ucdavis.edu (Hung Chau) writes:
  17. > I was wondering what is the best setup that I can have to make
  18. > my kermit transfer between the Sun and the PC.  I have heard
  19. > using using long packet (9024) and setting RTS/CTS control,
  20. > but is there any other tricks that I can use to speed up
  21. > my transfer.
  22. > I have also heard about sliding windows and Control Character
  23. > unprefixing but so far sliding windows does nothing for me
  24. > and Control Character unprefixing only make thing worse. If someone
  25. > can explain to me what I am doing wrong or better what exactly
  26. > am I changing when I set sliding windows or Control Character
  27. > unprefixing.
  28. ----------------
  29.     It's a good question, and one asked (and answered) so frequently
  30. that we really do need an FAQ.
  31.     Here are two suggestions. First, read more about it in the MS-DOS
  32. Kermit v3.14 beta docs, binary file mstibm.zip in directory kermit/test/bin
  33. on kermit.columbia.edu.
  34.     Second, long packets, plus a few sliding windows slots, brings you
  35. very good performance. Be sure to use adequate flow control everywhere,
  36. preferrably hardware RTS/CTS on the PC+modem. Not all hosts or comms 
  37. channels can take lots of bytes in a row so back off if things fail.
  38. For the utmost performance at high risk you may start unprefixing control
  39. codes via the SET CONTROL UNPREFIX command; use only at your own risk.
  40.     Remember that the other end has to play along. It may well be that
  41. other end has neither long packet nor sliding windows capabilities. If
  42. so this is an excellent time to upgrade the most likely ancient C Kermit
  43. on the Sun to the modern C Kermit v5A(190). That has all the bells and
  44. whistles. Ftp to kermit.columbia.edu, cd c-kermit, explore, raid&plunder.
  45.     Joe D.